CDataParameterList.cs
Code Type: C# Class
Uses Classes: CDataParameter, 1024]


Lines of Code: 137

public CDataParameterList()

	 constructor 

public long GetParamLongValue(string strParameterName)

	 returns a long paramater value by name 

public int GetParamIntValue(string strParameterName)

	 returns and int paramater by name 

public CDataParameterList(string strSessionID,
                                  string strClientIP,
                                  long lFXUserID)

	 construstor adds session interface paramaters to the list of params 

public bool AddInputParameter(string strName, DateTime dtValue)

	 add a date input parameter to the list 

public bool AddInputParameter(string strName, string strValue)

	 add a string input parameter to the list 

public bool AddInputParameterCLOB(string strName, string strValue)

	 add a clob(string) input parameter to the list 

public bool AddInputParameter(string strName, long lValue)

	 add a long input parameter to the list 

public bool AddInputParameter(string strName, bool bValue)

	 add a bool input parameter to the list 

public bool AddInputParameter(string strName, double dblValue)

	 add a double input parameter to the list 

public bool AddOutputParameter(string strName, DateTime dtValue)

	 add a date output parameter to the list 

public bool AddOutputParameter(string strName, string strValue)

	 add a string output parameter to the list 

public bool AddOutputParameter(string strName, long lValue)

	 add a long putput parameter to the list 

public bool AddOutputParameter(string strName, bool bValue)

	 add a bool output parameter to the list 

public bool AddOutputParameter(string strName, double dblValue)

	 add a double output parameter to the list 

public bool AddParameter(string strName, bool bValue, ParameterDirection pmDirection)

	 add a bool parameter to the list 

public bool AddParameter(string strName, double dblValue, ParameterDirection pmDirection)

	 add a double parameter to the list 

public bool AddParameter(string strName, DateTime dtValue, ParameterDirection pmDirection)

	 add a date parameter to the list 

public bool AddParameter(string strName, string strValue, ParameterDirection pmDirection)

	 add a string parameter to the list 

public bool AddCLOBParameter(string strName, string strValue, ParameterDirection pmDirection)

	 adds a clob(string) param to the list 

public bool AddParameter(string strName, long lValue, ParameterDirection pmDirection)

	 add a long parameter to the list 

public CDataParameter GetItemByName(string strParameterName)

	 get an item from the list by parameter name 

public CDataParameter GetItemByIndex(int nIndex)

	 get an item from the list by index 

public bool Add(CDataParameter parameter)

	 add a parameter to the list 

public bool AddBLOBParameter(string strName, byte[] byValue, ParameterDirection pmDirection)

	 add a blob paramateter to the list 

public bool AddInputParameterBLOB(string strName, byte[] byValue)

	 add a blob input parameter to the list 

public bool AddInputParameterBLOB(string strName,
                                          System.Web.UI.HtmlControls.HtmlInputFile FileInput)

	 add a blob parameter to the list from an input control 

	

